-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: Fixing EX01 - Added examples #53906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
pandas/core/resample.py
Outdated
2023-02-28 4 | ||
Freq: M, dtype: int64 | ||
|
||
Example for ``ffill`` with upsampling (we have more dates after resampling): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Example for ``ffill`` with upsampling (we have more dates after resampling): | |
Example for ``ffill`` with upsampling (fill the new dates with the previous value): |
Might be a little more clear
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, thank you.
pandas/core/resample.py
Outdated
2023-02-19 4 | ||
Freq: W-SUN, dtype: int64 | ||
|
||
With upsampling and limiting (we have more dates after resampling but |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then here the commentary can be (only fill the first new date with the previous value)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Thanks @DeaMariaLeon |
* Examples Resampler.__iter__, groups, indices, get_group, ffill * Improved explanation for ffill
Towards #37875
Note: the examples for
pandas.HDFStore.groups
andpandas.HDFStore.walk
were done here.